printf is not part of the C language

C - printf

Created: 2022-08-14
Tags: #fleeting


There is no input or output defined in C itself.

printf is just a useful function from stdio.h
The behaviour of printf is defined in the ANSI standard
so its properties should be the same with any compiler and library...
...that conforms to the standard.

References